home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / nn.zip / M-PYRAMI.H < prev    next >
C/C++ Source or Header  |  1989-12-31  |  676b  |  23 lines

  1. /************** Machine (and compiler) dependent definitions. **************
  2.  *
  3.  *    Define appropriate types for the following ranges of integer
  4.  *    variables.  These are processor & compiler dependent, but the
  5.  *    distributed definitions will probably work on most systems.
  6.  */
  7.  
  8. /*      MACHINE TYPE    DEFINED TYPE        VALUE RANGE    */
  9.  
  10. typedef unsigned char    int8;        /*        0 ..     255 */
  11. typedef short        int16;        /*  -10,000 ..  10,000 */
  12. typedef long        int32;        /* -100,000 .. 100,000 */
  13. typedef unsigned long    uint32;        /*       0 ..  2^31-1 */
  14.  
  15. #define NO_VARARGS
  16.  
  17. #define STRCSPN
  18.  
  19. #ifdef NETWORK_DATABASE
  20. #define NETWORK_BYTE_ORDER
  21. #include <netinet/in.h>
  22. #endif    /* NETWORK DATABASE */
  23.